home *** CD-ROM | disk | FTP | other *** search
/ Die Speccy' 97 / Die Speccy' 97.iso / amiga_system / the_aminet / comm / bbs / amms20d.lha / amms / mbbatch / com / info_system < prev    next >
Text File  |  1995-08-23  |  1KB  |  57 lines

  1. ;
  2. ;    NAME : INFO SYSTEM
  3. ;
  4. ;    VERSION : $VER: 2.01 / 29.01.1995
  5. ;
  6. ;    FUNKTION : Zeigt Systeminformationen an
  7. ;
  8. ;    AUFRUF : INFO SYSTEM
  9. ;
  10. ;    AUTOR : Michael Scheler
  11. ;
  12. ;    Diese Batchdatei benutzt folgende Befehle :
  13. ;    -------------------------------------------
  14. ;    CHECK FILE
  15. ;    DISK EXECUTE
  16. ;    DISK TEXT
  17. ;    ECHO
  18. ;    EXTERN
  19. ;
  20. ;    Folgende Amiga-Dos-Befehle benutzt diese Batch :
  21. ;    ------------------------------------------------
  22. ;    AVAIL
  23. ;    COPY
  24. ;    DELETE
  25. ;    ECHO
  26. ;    INFO
  27. ;
  28.  
  29. ;
  30. ;    Programm :
  31. ;
  32.  
  33. ; Texte einbinden
  34.  
  35. LANG={DEFLANGUAGE}
  36. _check file "mbbatch:com/'{ALANGUAGE}'/info_system.bat" GETTEXT
  37. LANG={ALANGUAGE}
  38. GETTEXT:
  39. _disk execute/keep "mbbatch:com/'LANG'/info_system.bat"
  40.  
  41. ;    System-Informationen in ein File umleiten
  42.  
  43. _echo/nolf T_CHECK
  44. _extern copy "mbbatch:com/'LANG'/info_system.txt" "mbtmp:'{port}'"
  45. _echo/nolf "."
  46. _extern avail >>"mbtmp:'{port}'"
  47. _echo/nolf "."
  48. _extern echo >>"mbtmp:'{port}'" "*n'T_MSGS'"
  49. _extern echo >>"mbtmp:'{port}'" "*n'T_FILES'"
  50. _echo/nolf "."
  51. _extern info >>"mbtmp:'{port}'"
  52.  
  53. ;    System-Informationen anzeigen, File danach loeschen
  54.  
  55. _disk text "mbtmp:'{port}'"
  56. _extern delete "mbtmp:'{port}'" quiet
  57.